home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 52 / Amiga Format AFCD52 (Issue 136, May 2000).iso / -screenplay- / shareware / freeciv / data / civ2 / units.ruleset < prev   
Text File  |  2000-02-29  |  34KB  |  1,426 lines

  1.  
  2. ; Modifying this file:
  3. ; You should not modify this file except to make bugfixes or
  4. ; for other "maintenance".  If you want to make custom changes,
  5. ; you should create a new datadir subdirectory and copy this file
  6. ; into that directory, and then modify that copy.  Then use the
  7. ; command "set units <mysubdir>" in the server to have freeciv
  8. ; use your new customized file.
  9.  
  10. ; Note that the freeciv AI may not cope well with anything more
  11. ; than minor changes.
  12.  
  13. [datafile]
  14. description="Civ2 unit_type data for Freeciv (incomplete)"
  15. options="1.9"
  16.  
  17. [units_adjust]
  18. max_hitpoints=0                 ; 0 means no max
  19. max_firepower=0                 ; 0 means no max
  20. firepower_factor=1              ; convenient for Civ1
  21.  
  22. ; Below: The individual units, one per section.
  23. ;
  24. ; The number can be variable, up to 200.  
  25. ; However for the "official" rulesets, units should not be removed 
  26. ; because that would break backward compatability with savegames.
  27. ;
  28. ; The order here matters: later units are considered "better" for
  29. ; a given flag or role.  
  30. ;
  31. ; The actual tag used (the * in [unit_*]) does not matter, except 
  32. ; it must be unique within this file, and it may be used in debug 
  33. ; output when reading this file.
  34. ;
  35. ; Notes:
  36. ;
  37. ; name          = name as seen by user 
  38. ; graphic       = tag specifing preferred graphic
  39. ; graphic_alt    = tag for alternate garphic if preferred graphic is not 
  40. ;          present; especially if preferred graphic is non-standard, 
  41. ;          this should be a standard tag.  Otherwise can use eg "-" 
  42. ;          for no alternate graphic.
  43. ; tech_req      = required advance, names from techs.ruleset, or special:
  44. ;                 "None" => available from start; "Never" => never available
  45. ; obsolete_by   = another unit name
  46. ; move_type     = "Land" or "Sea" or "Air" or "Heli"
  47. ; transport_cap = Number of units (ground, or air/missiles, depending on flags)
  48. ; fuel          = number of turns, for air units
  49. ; uk_*          = upkeep costs, these are used as base values in the game
  50. ; flags         = special flag strings, as in common/unit.h,unit.c
  51. ; roles         = special role strings, as in common/unit.h,unit.c
  52. ; helptext    = optional help text string; should escape all raw newlines 
  53. ;          so that xgettext parsing works
  54. ;
  55. ; Following flag strings require extra fields:
  56. ;  "Paratroopers"
  57. ;   paratroopers_range = the maximal range the unit can be paradropped to
  58. ;   paratroopers_mr_req = the move rate which is required at least for
  59. ;                         paradropping
  60. ;   paratroopers_mr_sub = the move rate which is subtracted after paradropping
  61. ;
  62.  
  63. [unit_settlers]
  64. name          = _("Settlers")
  65. move_type     = "Land"
  66. tech_req      = "None"
  67. obsolete_by   = "Engineers"
  68. graphic       = "u.settlers"
  69. graphic_alt   = "-"
  70. build_cost    = 40
  71. attack        = 0
  72. defense       = 1
  73. hitpoints     = 20
  74. firepower     = 1
  75. move_rate     = 1
  76. vision_range  = 1
  77. transport_cap = 0
  78. fuel          = 0
  79. uk_happy      = 0
  80. uk_shield     = 1
  81. uk_food       = 1
  82. uk_gold       = 0
  83. flags         = "Settlers", "NonMil", "Airbase", "Cities"
  84. roles         = ""
  85. helptext      = _("\
  86. Setters are one of the key units in the game.  They can be used to\
  87.  found new cities, irrigate land, build roads, railroads,\
  88.  fortresses, airbases\
  89.  and mines, and clean up pollution.  Upkeep for Settlers is in food\
  90.  as well as production, and a Setter can die if its supporting city\
  91.  runs out of food.\
  92. \n\n\
  93. Settlers and Engineers may work together to decrease the amount of\
  94.  time required for long projects.  If two or more Settlers and/or\
  95.  Engineers are both working on the same task in the same square,\
  96.  their efforts will be added together each turn until the task is\
  97.  finished.  Be careful not to dedicate too many workers to one task,\
  98.  though; excess effort can be wasted, and a group of Settlers and/or\
  99.  Engineers is highly vulnerable to enemy attacks.\
  100. ")
  101.  
  102. [unit_engineers]
  103. name          = _("Engineers")
  104. move_type     = "Land"
  105. tech_req      = "Explosives"
  106. obsolete_by   = "None"
  107. graphic       = "u.engineers"
  108. graphic_alt   = "-"
  109. build_cost    = 40
  110. attack        = 0
  111. defense       = 2
  112. hitpoints     = 20
  113. firepower     = 1
  114. move_rate     = 2
  115. vision_range  = 1
  116. transport_cap = 0
  117. fuel          = 0
  118. uk_happy      = 0
  119. uk_shield     = 1
  120. uk_food       = 1
  121. uk_gold       = 0
  122. flags         = "Settlers", "NonMil", "Transform", "Airbase", "Cities"
  123. roles         = ""
  124. helptext      = _("\
  125. Engineers are similar to Settlers, but they work twice as fast and\
  126.  move twice as fast.  Engineers may also perform major terrain\
  127.  transformations (for example, converting Tundra into Desert) which\
  128.  are beyond the capabilities of Settlers.\
  129. \n\n\
  130. TIP 1:  Upgrade Settlers to Engineers when possible, as Engineers\
  131.  require the same resources as ordinary Settlers.\
  132. \n\n\
  133. TIP 2:  If you manage to build Leonardo's Workshop, research\
  134.  Explosives before the Workshop becomes obsolete.  This way,\
  135.  your Settler units will be upgraded for free.\
  136. ")
  137.  
  138. [unit_warriors]
  139. name          = _("Warriors")
  140. move_type     = "Land"
  141. tech_req      = "None"
  142. obsolete_by   = "Pikemen"
  143. graphic       = "u.warriors"
  144. graphic_alt   = "-"
  145. build_cost    = 10
  146. attack        = 1
  147. defense       = 1
  148. hitpoints     = 10
  149. firepower     = 1
  150. move_rate     = 1
  151. vision_range  = 1
  152. transport_cap = 0
  153. fuel          = 0
  154. uk_happy      = 1
  155. uk_shield     = 1
  156. uk_food       = 0
  157. uk_gold       = 0
  158. flags         = ""
  159. roles         = "DefendOk", "FirstBuild"
  160. helptext      = _("\
  161. This unit may be built from the start of the game.  It is the\
  162.  weakest unit.\
  163. ")
  164.  
  165. [unit_phalanx]
  166. name          = _("Phalanx")
  167. move_type     = "Land"
  168. tech_req      = "Bronze Working"
  169. obsolete_by   = "Pikemen"
  170. graphic       = "u.phalanx"
  171. graphic_alt   = "-"
  172. build_cost    = 20
  173. attack        = 1
  174. defense       = 2
  175. hitpoints     = 10
  176. firepower     = 1
  177. move_rate     = 1
  178. vision_range  = 1
  179. transport_cap = 0
  180. fuel          = 0
  181. uk_happy      = 1
  182. uk_shield     = 1
  183. uk_food       = 0
  184. uk_gold       = 0
  185. flags         = ""
  186. roles         = "DefendGood", "FirstBuild"
  187.  
  188. [unit_archers]
  189. name          = _("Archers")
  190. move_type     = "Land"
  191. tech_req      = "Warrior Code"
  192. obsolete_by   = "Musketeers"
  193. graphic       = "u.archers"
  194. graphic_alt   = "-"
  195. build_cost    = 30
  196. attack        = 3
  197. defense       = 2
  198. hitpoints     = 10
  199. firepower     = 1
  200. move_rate     = 1
  201. vision_range  = 1
  202. transport_cap = 0
  203. fuel          = 0
  204. uk_happy      = 1
  205. uk_shield     = 1
  206. uk_food       = 0
  207. uk_gold       = 0
  208. flags         = ""
  209. roles         = "DefendOk"
  210.  
  211. [unit_legion]
  212. name          = _("Legion")
  213. move_type     = "Land"
  214. tech_req      = "Iron Working"
  215. obsolete_by   = "Musketeers"
  216. graphic       = "u.legion"
  217. graphic_alt   = "-"
  218. build_cost    = 40
  219. attack        = 4
  220. defense       = 2
  221. hitpoints     = 10
  222. firepower     = 1
  223. move_rate     = 1
  224. vision_range  = 1
  225. transport_cap = 0
  226. fuel          = 0
  227. uk_happy      = 1
  228. uk_shield     = 1
  229. uk_food       = 0
  230. uk_gold       = 0
  231. flags         = ""
  232. roles         = "DefendOk", "Hut", "BarbarianBuild", "BarbarianSea"
  233.  
  234. [unit_pikemen]
  235. name          = _("Pikemen")
  236. move_type     = "Land"
  237. tech_req      = "Feudalism"
  238. obsolete_by   = "Musketeers"
  239. graphic       = "u.pikemen"
  240. graphic_alt   = "-"
  241. build_cost    = 20
  242. attack        = 1
  243. defense       = 2
  244. hitpoints     = 10
  245. firepower     = 1
  246. move_rate     = 1
  247. vision_range  = 1
  248. transport_cap = 0
  249. fuel          = 0
  250. uk_happy      = 1
  251. uk_shield     = 1
  252. uk_food       = 0
  253. uk_gold       = 0
  254. flags         = "Pikemen"
  255. roles         = "DefendGood", "FirstBuild"
  256.  
  257. [unit_musketeers]
  258. name          = _("Musketeers")
  259. move_type     = "Land"
  260. tech_req      = "Gunpowder"
  261. obsolete_by   = "Riflemen"
  262. graphic       = "u.musketeers"
  263. graphic_alt   = "-"
  264. build_cost    = 30
  265. attack        = 3
  266. defense       = 3
  267. hitpoints     = 20
  268. firepower     = 1
  269. move_rate     = 1
  270. vision_range  = 1
  271. transport_cap = 0
  272. fuel          = 0
  273. uk_happy      = 1
  274. uk_shield     = 1
  275. uk_food       = 0
  276. uk_gold       = 0
  277. flags         = ""
  278. roles         = "DefendGood", "FirstBuild", "HutTech",
  279.                 "BarbarianTech", "BarbarianBuildTech", "BarbarianSeaTech"
  280.  
  281. [unit_fanatics]
  282. name          = _("Fanatics")
  283. move_type     = "Land"
  284. tech_req      = "Never"
  285. obsolete_by   = "None"
  286. graphic       = "u.fanatics"
  287. graphic_alt   = "-"
  288. build_cost    = 20
  289. attack        = 4
  290. defense       = 4
  291. hitpoints     = 20
  292. firepower     = 1
  293. move_rate     = 1
  294. vision_range  = 1
  295. transport_cap = 0
  296. fuel          = 0
  297. uk_happy      = 1
  298. uk_shield     = 1
  299. uk_food       = 0
  300. uk_gold       = 0
  301. flags         = ""
  302. roles         = "DefendGood"
  303.  
  304. [unit_partisan]
  305. name          = _("Partisan")
  306. move_type     = "Land"
  307. tech_req      = "Guerilla Warfare"
  308. obsolete_by   = "None"
  309. graphic       = "u.partisan"
  310. graphic_alt   = "-"
  311. build_cost    = 50
  312. attack        = 4
  313. defense       = 4
  314. hitpoints     = 20
  315. firepower     = 1
  316. move_rate     = 1
  317. vision_range  = 1
  318. transport_cap = 0
  319. fuel          = 0
  320. uk_happy      = 1
  321. uk_shield     = 1
  322. uk_food       = 0
  323. uk_gold       = 0
  324. flags         = "IgTer", "IgZOC"
  325. roles         = "DefendGood", "Partisan", "BarbarianTech"
  326. helptext      = _("\
  327. A number of Partisans are granted free when an enemy conquers your\
  328.  city, but only under these conditions:\
  329. \n\n\
  330.  - Guerilla Warfare must be known by at least 1 player.\
  331. \n\n\
  332.  - You must be the player who originally built the city.\
  333. \n\n\
  334.  - You must know about Communism and Gunpowder.\
  335. \n\n\
  336.  - You must run either a Democracy or a Communist government.\
  337. ")
  338.  
  339. [unit_alpine_troops]
  340. name          = _("Alpine Troops")
  341. move_type     = "Land"
  342. tech_req      = "Tactics"
  343. obsolete_by   = "None"
  344. graphic       = "u.alpine_troops"
  345. graphic_alt   = "-"
  346. build_cost    = 50
  347. attack        = 5
  348. defense       = 5
  349. hitpoints     = 20
  350. firepower     = 1
  351. move_rate     = 1
  352. vision_range  = 1
  353. transport_cap = 0
  354. fuel          = 0
  355. uk_happy      = 1
  356. uk_shield     = 1
  357. uk_food       = 0
  358. uk_gold       = 0
  359. flags         = "IgTer"
  360. roles         = "DefendGood"
  361.  
  362. [unit_riflemen]
  363. name          = _("Riflemen")
  364. move_type     = "Land"
  365. tech_req      = "Conscription"
  366. obsolete_by   = "None"
  367. graphic       = "u.riflemen"
  368. graphic_alt   = "-"
  369. build_cost    = 40
  370. attack        = 5
  371. defense       = 4
  372. hitpoints     = 20
  373. firepower     = 1
  374. move_rate     = 1
  375. vision_range  = 1
  376. transport_cap = 0
  377. fuel          = 0
  378. uk_happy      = 1
  379. uk_shield     = 1
  380. uk_food       = 0
  381. uk_gold       = 0
  382. flags         = ""
  383. roles         = "DefendGood", "FirstBuild"
  384.  
  385. [unit_marines]
  386. name          = _("Marines")
  387. move_type     = "Land"
  388. tech_req      = "Amphibious Warfare"
  389. obsolete_by   = "None"
  390. graphic       = "u.marines"
  391. graphic_alt   = "-"
  392. build_cost    = 60
  393. attack        = 8
  394. defense       = 5
  395. hitpoints     = 20
  396. firepower     = 1
  397. move_rate     = 1
  398. vision_range  = 1
  399. transport_cap = 0
  400. fuel          = 0
  401. uk_happy      = 1
  402. uk_shield     = 1
  403. uk_food       = 0
  404. uk_gold       = 0
  405. flags         = "Marines"
  406. roles         = "DefendOk", "BarbarianSeaTech"
  407.  
  408. [unit_paratroopers]
  409. name          = _("Paratroopers")
  410. move_type     = "Land"
  411. tech_req      = "Combined Arms"
  412. obsolete_by   = "None"
  413. graphic       = "u.paratroopers"
  414. graphic_alt   = "-"
  415. build_cost    = 60
  416. attack        = 6
  417. defense       = 4
  418. hitpoints     = 20
  419. firepower     = 1
  420. move_rate     = 1
  421. vision_range  = 1
  422. transport_cap = 0
  423. fuel          = 0
  424. uk_happy      = 1
  425. uk_shield     = 1
  426. uk_food       = 0
  427. uk_gold       = 0
  428. flags         = "Paratroopers"
  429. roles         = "DefendOk"
  430.  
  431. paratroopers_range = 10
  432. paratroopers_mr_req = 1
  433. paratroopers_mr_sub = 0
  434.  
  435. [unit_mech_inf]
  436. name          = _("Mech. Inf.")
  437. move_type     = "Land"
  438. tech_req      = "Labor Union"
  439. obsolete_by   = "None"
  440. graphic       = "u.mech_inf"
  441. graphic_alt   = "-"
  442. build_cost    = 50
  443. attack        = 6
  444. defense       = 6
  445. hitpoints     = 30
  446. firepower     = 1
  447. move_rate     = 3
  448. vision_range  = 1
  449. transport_cap = 0
  450. fuel          = 0
  451. uk_happy      = 1
  452. uk_shield     = 1
  453. uk_food       = 0
  454. uk_gold       = 0
  455. flags         = ""
  456. roles         = "DefendGood"
  457. helptext      = _("\
  458. Mechanized Infantry; this unit has the strongest defence strength\
  459.  of any land unit, but is only available near the end of the\
  460.  technology tree.\
  461. ")
  462.  
  463. [unit_horsemen]
  464. name          = _("Horsemen")
  465. move_type     = "Land"
  466. tech_req      = "Horseback Riding"
  467. obsolete_by   = "Knights"
  468. graphic       = "u.horsemen"
  469. graphic_alt   = "-"
  470. build_cost    = 20
  471. attack        = 2
  472. defense       = 1
  473. hitpoints     = 10
  474. firepower     = 1
  475. move_rate     = 2
  476. vision_range  = 1
  477. transport_cap = 0
  478. fuel          = 0
  479. uk_happy      = 1
  480. uk_shield     = 1
  481. uk_food       = 0
  482. uk_gold       = 0
  483. flags         = "Horse"
  484. roles         = "AttackFast", "Hut", "Barbarian"
  485.  
  486. [unit_chariot]
  487. name          = _("Chariot")
  488. move_type     = "Land"
  489. tech_req      = "The Wheel"
  490. obsolete_by   = "Knights"
  491. graphic       = "u.chariot"
  492. graphic_alt   = "-"
  493. build_cost    = 30
  494. attack        = 3
  495. defense       = 1
  496. hitpoints     = 10
  497. firepower     = 1
  498. move_rate     = 2
  499. vision_range  = 1
  500. transport_cap = 0
  501. fuel          = 0
  502. uk_happy      = 1
  503. uk_shield     = 1
  504. uk_food       = 0
  505. uk_gold       = 0
  506. flags         = "Horse"
  507. roles         = "AttackFast", "Hut"
  508.  
  509. [unit_elephants]
  510. name          = _("Elephants")
  511. move_type     = "Land"
  512. tech_req      = "Never"
  513. obsolete_by   = "Crusaders"
  514. graphic       = "u.elephants"
  515. graphic_alt   = "-"
  516. build_cost    = 40
  517. attack        = 4
  518. defense       = 1
  519. hitpoints     = 10
  520. firepower     = 1
  521. move_rate     = 2
  522. vision_range  = 1
  523. transport_cap = 0
  524. fuel          = 0
  525. uk_happy      = 1
  526. uk_shield     = 1
  527. uk_food       = 0
  528. uk_gold       = 0
  529. flags         = ""
  530. roles         = "AttackFast"
  531.  
  532. [unit_crusaders]
  533. name          = _("Crusaders")
  534. move_type     = "Land"
  535. tech_req      = "Never"
  536. obsolete_by   = "Dragoons"
  537. graphic       = "u.crusaders"
  538. graphic_alt   = "-"
  539. build_cost    = 40
  540. attack        = 5
  541. defense       = 1
  542. hitpoints     = 10
  543. firepower     = 1
  544. move_rate     = 2
  545. vision_range  = 1
  546. transport_cap = 0
  547. fuel          = 0
  548. uk_happy      = 1
  549. uk_shield     = 1
  550. uk_food       = 0
  551. uk_gold       = 0
  552. flags         = "Horse"
  553. roles         = "AttackFast"
  554.  
  555. [unit_knights]
  556. name          = _("Knights")
  557. move_type     = "Land"
  558. tech_req      = "Chivalry"
  559. obsolete_by   = "Dragoons"
  560. graphic       = "u.knights"
  561. graphic_alt   = "-"
  562. build_cost    = 40
  563. attack        = 4
  564. defense       = 2
  565. hitpoints     = 10
  566. firepower     = 1
  567. move_rate     = 2
  568. vision_range  = 1
  569. transport_cap = 0
  570. fuel          = 0
  571. uk_happy      = 1
  572. uk_shield     = 1
  573. uk_food       = 0
  574. uk_gold       = 0
  575. flags         = "Horse"
  576. roles         = "AttackFast", "HutTech", "BarbarianTech",
  577.                 "BarbarianBuildTech", "BarbarianSeaTech"
  578.  
  579. [unit_dragoons]
  580. name          = _("Dragoons")
  581. move_type     = "Land"
  582. tech_req      = "Leadership"
  583. obsolete_by   = "Cavalry"
  584. graphic       = "u.dragoons"
  585. graphic_alt   = "-"
  586. build_cost    = 50
  587. attack        = 5
  588. defense       = 2
  589. hitpoints     = 20
  590. firepower     = 1
  591. move_rate     = 2
  592. vision_range  = 1
  593. transport_cap = 0
  594. fuel          = 0
  595. uk_happy      = 1
  596. uk_shield     = 1
  597. uk_food       = 0
  598. uk_gold       = 0
  599. flags         = "Horse"
  600. roles         = "AttackFast", "BarbarianBuildTech", "BarbarianSeaTech"
  601.  
  602. [unit_cavalry]
  603. name          = _("Cavalry")
  604. move_type     = "Land"
  605. tech_req      = "Tactics"
  606. obsolete_by   = "Armor"
  607. graphic       = "u.cavalry"
  608. graphic_alt   = "-"
  609. build_cost    = 60
  610. attack        = 8
  611. defense       = 3
  612. hitpoints     = 20
  613. firepower     = 1
  614. move_rate     = 2
  615. vision_range  = 1
  616. transport_cap = 0
  617. fuel          = 0
  618. uk_happy      = 1
  619. uk_shield     = 1
  620. uk_food       = 0
  621. uk_gold       = 0
  622. flags         = ""
  623. roles         = "AttackFast"
  624.  
  625. [unit_armor]
  626. name          = _("Armor")
  627. move_type     = "Land"
  628. tech_req      = "Mobile Warfare"
  629. obsolete_by   = "None"
  630. graphic       = "u.armor"
  631. graphic_alt   = "-"
  632. build_cost    = 80
  633. attack        = 10
  634. defense       = 5
  635. hitpoints     = 30
  636. firepower     = 1
  637. move_rate     = 3
  638. vision_range  = 1
  639. transport_cap = 0
  640. fuel          = 0
  641. uk_happy      = 1
  642. uk_shield     = 1
  643. uk_food       = 0
  644. uk_gold       = 0
  645. flags         = ""
  646. roles         = "AttackFast"
  647.  
  648. [unit_catapult]
  649. name          = _("Catapult")
  650. move_type     = "Land"
  651. tech_req      = "Mathematics"
  652. obsolete_by   = "Cannon"
  653. graphic       = "u.catapult"
  654. graphic_alt   = "-"
  655. build_cost    = 40
  656. attack        = 6
  657. defense       = 1
  658. hitpoints     = 10
  659. firepower     = 1
  660. move_rate     = 1
  661. vision_range  = 1
  662. transport_cap = 0
  663. fuel          = 0
  664. uk_happy      = 1
  665. uk_shield     = 1
  666. uk_food       = 0
  667. uk_gold       = 0
  668. flags         = ""
  669. roles         = "AttackStrong"
  670.  
  671. [unit_cannon]
  672. name          = _("Cannon")
  673. move_type     = "Land"
  674. tech_req      = "Metallurgy"
  675. obsolete_by   = "Artillery"
  676. graphic       = "u.cannon"
  677. graphic_alt   = "-"
  678. build_cost    = 40
  679. attack        = 8
  680. defense       = 1
  681. hitpoints     = 20
  682. firepower     = 1
  683. move_rate     = 1
  684. vision_range  = 1
  685. transport_cap = 0
  686. fuel          = 0
  687. uk_happy      = 1
  688. uk_shield     = 1
  689. uk_food       = 0
  690. uk_gold       = 0
  691. flags         = ""
  692. roles         = "AttackStrong", "BarbarianTech", "BarbarianBuildTech"
  693.  
  694. [unit_artillery]
  695. name          = _("Artillery")
  696. move_type     = "Land"
  697. tech_req      = "Machine Tools"
  698. obsolete_by   = "Howitzer"
  699. graphic       = "u.artillery"
  700. graphic_alt   = "-"
  701. build_cost    = 50
  702. attack        = 10
  703. defense       = 1
  704. hitpoints     = 20
  705. firepower     = 2
  706. move_rate     = 1
  707. vision_range  = 1
  708. transport_cap = 0
  709. fuel          = 0
  710. uk_happy      = 1
  711. uk_shield     = 1
  712. uk_food       = 0
  713. uk_gold       = 0
  714. flags         = ""
  715. roles         = "AttackStrong"
  716.  
  717. [unit_howitzer]
  718. name          = _("Howitzer")
  719. move_type     = "Land"
  720. tech_req      = "Robotics"
  721. obsolete_by   = "None"
  722. graphic       = "u.howitzer"
  723. graphic_alt   = "-"
  724. build_cost    = 70
  725. attack        = 12
  726. defense       = 2
  727. hitpoints     = 30
  728. firepower     = 2
  729. move_rate     = 2
  730. vision_range  = 1
  731. transport_cap = 0
  732. fuel          = 0
  733. uk_happy      = 1
  734. uk_shield     = 1
  735. uk_food       = 0
  736. uk_gold       = 0
  737. flags         = "IgWall"
  738. roles         = "AttackStrong"
  739.  
  740. [unit_fighter]
  741. name          = _("Fighter")
  742. move_type     = "Air"
  743. tech_req      = "Flight"
  744. obsolete_by   = "Stealth Fighter"
  745. graphic       = "u.fighter"
  746. graphic_alt   = "-"
  747. build_cost    = 60
  748. attack        = 4
  749. defense       = 3
  750. hitpoints     = 20
  751. firepower     = 2
  752. move_rate     = 10
  753. vision_range  = 2
  754. transport_cap = 0
  755. fuel          = 1
  756. uk_happy      = 0
  757. uk_shield     = 1
  758. uk_food       = 0
  759. uk_gold       = 0
  760. flags         = "Fighter"
  761. roles         = ""
  762.  
  763. [unit_bomber]
  764. name          = _("Bomber")
  765. move_type     = "Air"
  766. tech_req      = "Advanced Flight"
  767. obsolete_by   = "Stealth Bomber"
  768. graphic       = "u.bomber"
  769. graphic_alt   = "-"
  770. build_cost    = 120
  771. attack        = 12
  772. defense       = 1
  773. hitpoints     = 20
  774. firepower     = 2
  775. move_rate     = 8
  776. vision_range  = 2
  777. transport_cap = 0
  778. fuel          = 2
  779. uk_happy      = 1
  780. uk_shield     = 1
  781. uk_food       = 0
  782. uk_gold       = 0
  783. flags         = "FieldUnit", "OneAttack"
  784. roles         = ""
  785.  
  786. [unit_helicopter]
  787. name          = _("Helicopter")
  788. move_type     = "Heli"
  789. tech_req      = "Combined Arms"
  790. obsolete_by   = "None"
  791. graphic       = "u.helicopter"
  792. graphic_alt   = "-"
  793. build_cost    = 100
  794. attack        = 10
  795. defense       = 3
  796. hitpoints     = 20
  797. firepower     = 2
  798. move_rate     = 6
  799. vision_range  = 2
  800. transport_cap = 0
  801. fuel          = 0
  802. uk_happy      = 1
  803. uk_shield     = 1
  804. uk_food       = 0
  805. uk_gold       = 0
  806. flags         = "FieldUnit", "OneAttack"
  807. roles         = ""
  808. helptext      = _("\
  809. The Helicopter is a very powerful unit, as it can both fly and\
  810.  conquer cities.  Care must be exercised, because Helicopters lose a\
  811.  small amount of health for every turn not spent in a city, unless\
  812.  you have the United Nations wonder.\
  813. ")
  814.  
  815. [unit_stealth_fighter]
  816. name          = _("Stealth Fighter")
  817. move_type     = "Air"
  818. tech_req      = "Stealth"
  819. obsolete_by   = "None"
  820. graphic       = "u.stealth_fighter"
  821. graphic_alt   = "-"
  822. build_cost    = 80
  823. attack        = 8
  824. defense       = 4
  825. hitpoints     = 20
  826. firepower     = 2
  827. move_rate     = 14
  828. vision_range  = 2
  829. transport_cap = 0
  830. fuel          = 1
  831. uk_happy      = 0
  832. uk_shield     = 1
  833. uk_food       = 0
  834. uk_gold       = 0
  835. flags         = "Fighter"
  836. roles         = ""
  837. helptext      = _("\
  838. An improved Fighter, with improved attack and a higher movement\
  839.  radius.\
  840. ")
  841.  
  842. [unit_stealth_bomber]
  843. name          = _("Stealth Bomber")
  844. move_type     = "Air"
  845. tech_req      = "Stealth"
  846. obsolete_by   = "None"
  847. graphic       = "u.stealth_bomber"
  848. graphic_alt   = "-"
  849. build_cost    = 160
  850. attack        = 14
  851. defense       = 5
  852. hitpoints     = 20
  853. firepower     = 2
  854. move_rate     = 12
  855. vision_range  = 2
  856. transport_cap = 0
  857. fuel          = 2
  858. uk_happy      = 1
  859. uk_shield     = 1
  860. uk_food       = 0
  861. uk_gold       = 0
  862. flags         = "FieldUnit", "OneAttack"
  863. roles         = ""
  864. helptext      = _("\
  865. An improved Bomber, with improved attack and a higher movement\
  866.  radius.\
  867. ")
  868.  
  869. [unit_trireme]
  870. name          = _("Trireme")
  871. move_type     = "Sea"
  872. tech_req      = "Map Making"
  873. obsolete_by   = "Caravel"
  874. graphic       = "u.trireme"
  875. graphic_alt   = "-"
  876. build_cost    = 40
  877. attack        = 1
  878. defense       = 1
  879. hitpoints     = 10
  880. firepower     = 1
  881. move_rate     = 3
  882. vision_range  = 1
  883. transport_cap = 2
  884. fuel          = 0
  885. uk_happy      = 1
  886. uk_shield     = 1
  887. uk_food       = 0
  888. uk_gold       = 0
  889. flags         = "FieldUnit", "Trireme"
  890. roles         = "Ferryboat"
  891.  
  892. [unit_caravel]
  893. name          = _("Caravel")
  894. move_type     = "Sea"
  895. tech_req      = "Navigation"
  896. obsolete_by   = "Galleon"
  897. graphic       = "u.caravel"
  898. graphic_alt   = "-"
  899. build_cost    = 40
  900. attack        = 2
  901. defense       = 1
  902. hitpoints     = 10
  903. firepower     = 1
  904. move_rate     = 3
  905. vision_range  = 1
  906. transport_cap = 3
  907. fuel          = 0
  908. uk_happy      = 1
  909. uk_shield     = 1
  910. uk_food       = 0
  911. uk_gold       = 0
  912. flags         = ""
  913. roles         = "Ferryboat", "BarbarianBoat"
  914.  
  915. [unit_galleon]
  916. name          = _("Galleon")
  917. move_type     = "Sea"
  918. tech_req      = "Magnetism"
  919. obsolete_by   = "Transport"
  920. graphic       = "u.galleon"
  921. graphic_alt   = "-"
  922. build_cost    = 40
  923. attack        = 0
  924. defense       = 2
  925. hitpoints     = 20
  926. firepower     = 1
  927. move_rate     = 4
  928. vision_range  = 1
  929. transport_cap = 4
  930. fuel          = 0
  931. uk_happy      = 1
  932. uk_shield     = 1
  933. uk_food       = 0
  934. uk_gold       = 0
  935. flags         = ""
  936. roles         = "Ferryboat", "BarbarianBoat"
  937.  
  938. [unit_frigate]
  939. name          = _("Frigate")
  940. move_type     = "Sea"
  941. tech_req      = "Magnetism"
  942. obsolete_by   = "Ironclad"
  943. graphic       = "u.frigate"
  944. graphic_alt   = "-"
  945. build_cost    = 50
  946. attack        = 4
  947. defense       = 2
  948. hitpoints     = 20
  949. firepower     = 1
  950. move_rate     = 4
  951. vision_range  = 1
  952. transport_cap = 2
  953. fuel          = 0
  954. uk_happy      = 1
  955. uk_shield     = 1
  956. uk_food       = 0
  957. uk_gold       = 0
  958. flags         = "FieldUnit"
  959. roles         = ""
  960.  
  961. [unit_ironclad]
  962. name          = _("Ironclad")
  963. move_type     = "Sea"
  964. tech_req      = "Steam Engine"
  965. obsolete_by   = "Destroyer"
  966. graphic       = "u.ironclad"
  967. graphic_alt   = "-"
  968. build_cost    = 60
  969. attack        = 4
  970. defense       = 4
  971. hitpoints     = 30
  972. firepower     = 1
  973. move_rate     = 4
  974. vision_range  = 1
  975. transport_cap = 0
  976. fuel          = 0
  977. uk_happy      = 1
  978. uk_shield     = 1
  979. uk_food       = 0
  980. uk_gold       = 0
  981. flags         = "FieldUnit"
  982. roles         = ""
  983.  
  984. [unit_destroyer]
  985. name          = _("Destroyer")
  986. move_type     = "Sea"
  987. tech_req      = "Electricity"
  988. obsolete_by   = "None"
  989. graphic       = "u.destroyer"
  990. graphic_alt   = "-"
  991. build_cost    = 60
  992. attack        = 4
  993. defense       = 4
  994. hitpoints     = 30
  995. firepower     = 1
  996. move_rate     = 6
  997. vision_range  = 2
  998. transport_cap = 0
  999. fuel          = 0
  1000. uk_happy      = 1
  1001. uk_shield     = 1
  1002. uk_food       = 0
  1003. uk_gold       = 0
  1004. flags         = "FieldUnit"
  1005. roles         = ""
  1006. helptext      = _("\
  1007. TIP:  A very fast unit, which is very useful for hunting down enemy\
  1008.  Transports.\
  1009. ")
  1010.  
  1011. [unit_cruiser]
  1012. name          = _("Cruiser")
  1013. move_type     = "Sea"
  1014. tech_req      = "Steel"
  1015. obsolete_by   = "AEGIS Cruiser"
  1016. graphic       = "u.cruiser"
  1017. graphic_alt   = "-"
  1018. build_cost    = 80
  1019. attack        = 6
  1020. defense       = 6
  1021. hitpoints     = 30
  1022. firepower     = 2
  1023. move_rate     = 5
  1024. vision_range  = 2
  1025. transport_cap = 0
  1026. fuel          = 0
  1027. uk_happy      = 1
  1028. uk_shield     = 1
  1029. uk_food       = 0
  1030. uk_gold       = 0
  1031. flags         = "FieldUnit"
  1032. roles         = ""
  1033.  
  1034. [unit_aegis_cruiser]
  1035. name          = _("AEGIS Cruiser")
  1036. move_type     = "Sea"
  1037. tech_req      = "Rocketry"
  1038. obsolete_by   = "None"
  1039. graphic       = "u.aegis_cruiser"
  1040. graphic_alt   = "-"
  1041. build_cost    = 100
  1042. attack        = 8
  1043. defense       = 8
  1044. hitpoints     = 30
  1045. firepower     = 2
  1046. move_rate     = 5
  1047. vision_range  = 2
  1048. transport_cap = 0
  1049. fuel          = 0
  1050. uk_happy      = 1
  1051. uk_shield     = 1
  1052. uk_food       = 0
  1053. uk_gold       = 0
  1054. flags         = "FieldUnit", "AEGIS"
  1055. roles         = ""
  1056.  
  1057. [unit_battleship]
  1058. name          = _("Battleship")
  1059. move_type     = "Sea"
  1060. tech_req      = "Automobile"
  1061. obsolete_by   = "None"
  1062. graphic       = "u.battleship"
  1063. graphic_alt   = "-"
  1064. build_cost    = 160
  1065. attack        = 12
  1066. defense       = 12
  1067. hitpoints     = 40
  1068. firepower     = 2
  1069. move_rate     = 4
  1070. vision_range  = 2
  1071. transport_cap = 0
  1072. fuel          = 0
  1073. uk_happy      = 1
  1074. uk_shield     = 1
  1075. uk_food       = 0
  1076. uk_gold       = 0
  1077. flags         = "FieldUnit"
  1078. roles         = ""
  1079.  
  1080. [unit_submarine]
  1081. name          = _("Submarine")
  1082. move_type     = "Sea"
  1083. tech_req      = "Combustion"
  1084. obsolete_by   = "None"
  1085. graphic       = "u.submarine"
  1086. graphic_alt   = "-"
  1087. build_cost    = 60
  1088. attack        = 10
  1089. defense       = 2
  1090. hitpoints     = 30
  1091. firepower     = 2
  1092. move_rate     = 3
  1093. vision_range  = 2
  1094. transport_cap = 8
  1095. fuel          = 0
  1096. uk_happy      = 1
  1097. uk_shield     = 1
  1098. uk_food       = 0
  1099. uk_gold       = 0
  1100. flags         = "FieldUnit", "Submarine"
  1101. roles         = ""
  1102. helptext      = _("\
  1103. This unit is invisible unless it is next to an enemy unit or city.\
  1104.  It cannot make shore bombardments against enemy land units or cities.\
  1105. \n\n\
  1106. Submarines have a very high strategic value, but have a weak\
  1107.  defence.\
  1108. ")
  1109.  
  1110. [unit_carrier]
  1111. name          = _("Carrier")
  1112. move_type     = "Sea"
  1113. tech_req      = "Advanced Flight"
  1114. obsolete_by   = "None"
  1115. graphic       = "u.carrier"
  1116. graphic_alt   = "-"
  1117. build_cost    = 160
  1118. attack        = 1
  1119. defense       = 9
  1120. hitpoints     = 40
  1121. firepower     = 2
  1122. move_rate     = 5
  1123. vision_range  = 2
  1124. transport_cap = 8
  1125. fuel          = 0
  1126. uk_happy      = 1
  1127. uk_shield     = 1
  1128. uk_food       = 0
  1129. uk_gold       = 0
  1130. flags         = "FieldUnit", "Carrier"
  1131. roles         = ""
  1132. helptext      = _("\
  1133. TIP:  Guard Carriers with a handful of fast-moving ships and a\
  1134.  battleship, as losing a fully-equipped Carrier is VERY\
  1135.  painful and expensive.\
  1136. ")
  1137.  
  1138. [unit_transport]
  1139. name          = _("Transport")
  1140. move_type     = "Sea"
  1141. tech_req      = "Industrialization"
  1142. obsolete_by   = "None"
  1143. graphic       = "u.transport"
  1144. graphic_alt   = "-"
  1145. build_cost    = 50
  1146. attack        = 0
  1147. defense       = 3
  1148. hitpoints     = 30
  1149. firepower     = 1
  1150. move_rate     = 5
  1151. vision_range  = 2
  1152. transport_cap = 8
  1153. fuel          = 0
  1154. uk_happy      = 1
  1155. uk_shield     = 1
  1156. uk_food       = 0
  1157. uk_gold       = 0
  1158. flags         = ""
  1159. roles         = "Ferryboat"
  1160.  
  1161. [unit_cruise_missile]
  1162. name          = _("Cruise Missile")
  1163. move_type     = "Air"
  1164. tech_req      = "Rocketry"
  1165. obsolete_by   = "None"
  1166. graphic       = "u.cruise_missile"
  1167. graphic_alt   = "-"
  1168. build_cost    = 60
  1169. attack        = 18
  1170. defense       = 0
  1171. hitpoints     = 10
  1172. firepower     = 3
  1173. move_rate     = 12
  1174. vision_range  = 1
  1175. transport_cap = 0
  1176. fuel          = 1
  1177. uk_happy      = 1
  1178. uk_shield     = 1
  1179. uk_food       = 0
  1180. uk_gold       = 0
  1181. flags         = "FieldUnit", "OneAttack", "Missile"
  1182. roles         = ""
  1183. helptext      = _("\
  1184. TIP:  A handful of these can successfully keep the waters around\
  1185.  your treasured homeland free of enemy ships.\
  1186. ")
  1187.  
  1188. [unit_nuclear]
  1189. name          = _("Nuclear")
  1190. move_type     = "Air"
  1191. tech_req      = "Rocketry"
  1192. obsolete_by   = "None"
  1193. graphic       = "u.nuclear"
  1194. graphic_alt   = "-"
  1195. build_cost    = 160
  1196. attack        = 99
  1197. defense       = 0
  1198. hitpoints     = 10
  1199. firepower     = 1
  1200. move_rate     = 16
  1201. vision_range  = 1
  1202. transport_cap = 0
  1203. fuel          = 1
  1204. uk_happy      = 1
  1205. uk_shield     = 1
  1206. uk_food       = 0
  1207. uk_gold       = 0
  1208. flags         = "FieldUnit", "OneAttack", "Missile", "Nuclear"
  1209. roles         = ""
  1210. helptext      = _("\
  1211. You can build Nuclear units when you have the required advance, and\
  1212.  the Manhattan Project wonder has been built by any player.\
  1213. \n\n\
  1214. On impact, the blast will destroy any unit in a 3x3-square area,\
  1215.  including friendly units.  When striking a city, the city size is\
  1216.  halved, and the surrounding squares are polluted.\
  1217. \n\n\
  1218. TIP 1:  Nuking the ocean will not generate pollution, and is a most\
  1219.  effective (but expensive!!) way of getting rid of enemy\
  1220.  ships.\
  1221. \n\n\
  1222. TIP 2:  You may be involved in a situation where you've invaded an\
  1223.  enemy country en masse, but the enemy cities are too strong.\
  1224.  Before using a Nuclear unit, assemble a gang of Settlers\
  1225.  and/or Engineers next to the city and have them ready to fix\
  1226.  the pollution on the same turn it occurs!  This minimises the\
  1227.  chance of global warming.  Eco-friendly nukes!\
  1228. ")
  1229.  
  1230. [unit_diplomat]
  1231. name          = _("Diplomat")
  1232. move_type     = "Land"
  1233. tech_req      = "Writing"
  1234. obsolete_by   = "Spy"
  1235. graphic       = "u.diplomat"
  1236. graphic_alt   = "-"
  1237. build_cost    = 30
  1238. attack        = 0
  1239. defense       = 0
  1240. hitpoints     = 10
  1241. firepower     = 1
  1242. move_rate     = 2
  1243. vision_range  = 1
  1244. transport_cap = 0
  1245. fuel          = 0
  1246. uk_happy      = 0
  1247. uk_shield     = 0
  1248. uk_food       = 0
  1249. uk_gold       = 0
  1250. flags         = "Diplomat", "IgZOC", "NonMil"
  1251. roles         = ""
  1252. helptext      = _("\
  1253. - A Diplomat can establish embassies with other civilizations\
  1254.  by moving into another player's city.\
  1255. \n\n\
  1256. - Diplomats can also try to sabotage enemy production, or steal\
  1257.  an advance from an enemy city.  (An advance can only be stolen\
  1258.  once per city).\
  1259. \n\n\
  1260. - A Diplomat can also bribe an enemy unit, if that unit is the only\
  1261.  unit on its square.\
  1262. \n\n\
  1263. - Diplomats can even start a revolution in an enemy city and turn\
  1264.  it into your own, if you have the money!\
  1265. \n\n\
  1266. - In some game strategies, hordes of Diplomats can be used to wreak\
  1267.  havoc on the enemy.  Little wonder that Diplomats are often\
  1268.  viewed with suspicion and fear!\
  1269. ")
  1270.  
  1271. [unit_spy]
  1272. name          = _("Spy")
  1273. move_type     = "Land"
  1274. tech_req      = "Espionage"
  1275. obsolete_by   = "None"
  1276. graphic       = "u.spy"
  1277. graphic_alt   = "-"
  1278. build_cost    = 30
  1279. attack        = 0
  1280. defense       = 0
  1281. hitpoints     = 10
  1282. firepower     = 1
  1283. move_rate     = 3
  1284. vision_range  = 2
  1285. transport_cap = 0
  1286. fuel          = 0
  1287. uk_happy      = 0
  1288. uk_shield     = 0
  1289. uk_food       = 0
  1290. uk_gold       = 0
  1291. flags         = "Diplomat", "IgZOC", "NonMil", "Spy"
  1292. roles         = ""
  1293. helptext      = _("\
  1294. A Spy is a full time professional and as such is much more\
  1295.  skilled in the arts of espionage than her Diplomat predecessor.\
  1296. \n\n\
  1297. The most inoffensive skills in a Spy's repertoire are her ability\
  1298.  to investigate cities - revealing detailed information, and\
  1299.  the establishment of embassies.  However, if your Spy has gained\
  1300.  herself a reputation for clandestine behaviour she will be\
  1301.  executed if she tries to establish an embassy.\
  1302. \n\n\
  1303. She can also be used to: poison the water supply of an enemy city\
  1304.  (reducing the population); steal specific technology; and sabotage\
  1305.  predetermined city targets (note: sabotaging improvements in a\
  1306.  capital or sabotaging City Walls increases the risks of capture).\
  1307.  A Spy can also infiltrate a city and ferment a revolt.\
  1308. \n\n\
  1309. A Spy can also be of aid on the battlefield - sabotaging enemy units\
  1310.  as well as bribing them to change allegiance.\
  1311. ")
  1312.  
  1313. [unit_caravan]
  1314. name          = _("Caravan")
  1315. move_type     = "Land"
  1316. tech_req      = "Trade"
  1317. obsolete_by   = "Freight"
  1318. graphic       = "u.caravan"
  1319. graphic_alt   = "-"
  1320. build_cost    = 50
  1321. attack        = 0
  1322. defense       = 1
  1323. hitpoints     = 10
  1324. firepower     = 1
  1325. move_rate     = 1
  1326. vision_range  = 1
  1327. transport_cap = 0
  1328. fuel          = 0
  1329. uk_happy      = 0
  1330. uk_shield     = 0
  1331. uk_food       = 0
  1332. uk_gold       = 0
  1333. flags         = "Caravan", "IgZOC", "NonMil"
  1334. roles         = ""
  1335. helptext      = _("\
  1336. Every Caravan that is used to build a wonder will add 50 shields\
  1337.  towards the production of the wonder.\
  1338. \n\n\
  1339. TIP:  You can stockpile a stack of Caravans in advance and bring\
  1340.  them all into a city where you have started to build a wonder,\
  1341.  and finish it in only one turn!\
  1342. ")
  1343.  
  1344. [unit_freight]
  1345. name          = _("Freight")
  1346. move_type     = "Land"
  1347. tech_req      = "The Corporation"
  1348. obsolete_by   = "None"
  1349. graphic       = "u.freight"
  1350. graphic_alt   = "-"
  1351. build_cost    = 50
  1352. attack        = 0
  1353. defense       = 1
  1354. hitpoints     = 10
  1355. firepower     = 1
  1356. move_rate     = 2
  1357. vision_range  = 1
  1358. transport_cap = 0
  1359. fuel          = 0
  1360. uk_happy      = 0
  1361. uk_shield     = 0
  1362. uk_food       = 0
  1363. uk_gold       = 0
  1364. flags         = "Caravan", "IgZOC", "NonMil"
  1365. roles         = ""
  1366. helptext      = _("\
  1367. The Freight unit replaces the Caravan, and moves at twice the speed.\
  1368. ")
  1369.  
  1370. [unit_explorer]
  1371. name          = _("Explorer")
  1372. move_type     = "Land"
  1373. tech_req      = "Seafaring"
  1374. obsolete_by   = "Partisan"
  1375. graphic       = "u.explorer"
  1376. graphic_alt   = "-"
  1377. build_cost    = 30
  1378. attack        = 0
  1379. defense       = 1
  1380. hitpoints     = 10
  1381. firepower     = 1
  1382. move_rate     = 1
  1383. vision_range  = 1
  1384. transport_cap = 0
  1385. fuel          = 0
  1386. uk_happy      = 0
  1387. uk_shield     = 0
  1388. uk_food       = 0
  1389. uk_gold       = 0
  1390. flags         = "IgTer", "IgZOC", "NonMil"
  1391. roles         = "Explorer"
  1392. helptext      = _("\
  1393. Explorers are very useful for mapping unknown territory.\
  1394. ")
  1395.  
  1396. [unit_barbarian_leader]
  1397. name          = _("Barbarian Leader")
  1398. move_type     = "Land"
  1399. tech_req      = "None"
  1400. obsolete_by   = "Settlers"    ; Ugly hack, to prevent anyone from building it
  1401. graphic       = "u.diplomat"
  1402. graphic_alt   = "-"
  1403. build_cost    = 40
  1404. attack        = 0
  1405. defense       = 0
  1406. hitpoints     = 10
  1407. firepower     = 1
  1408. move_rate     = 2
  1409. vision_range  = 1
  1410. transport_cap = 0
  1411. fuel          = 0
  1412. uk_happy      = 0
  1413. uk_shield     = 0
  1414. uk_food       = 0
  1415. uk_gold       = 0
  1416. flags         = "IgZOC", "NonMil"
  1417. roles         = "BarbarianLeader"
  1418. helptext      = _("\
  1419. When barbarian leader is killed on a tile without any defending units, \
  1420. the 100 gold ransom is paid, but only to land units and helicopters.\
  1421. ")
  1422.  
  1423. [u_specials]
  1424. partisan_req = "Gunpowder","Communism"
  1425.  
  1426.